home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / literature / lit009.dms / lit009.adf / devs / mountlist < prev    next >
Text File  |  1990-01-25  |  3KB  |  123 lines

  1. NULL:
  2.      Handler = l:null-handler
  3.      stacksize = 5000
  4.      priority = 5
  5.            Globvec = 1
  6. #
  7.  
  8. /* MountList for V1.3 */
  9.  
  10. /*  Mount Entry for the new Console Handler */
  11.  
  12. NEWCON: 
  13.     Handler = L:Newcon-Handler
  14.     Priority = 5
  15.     StackSize = 1000
  16. #
  17.  
  18. /* This is an example of a non-filing system mount using a handler written
  19.    in C.
  20. */
  21.  
  22. SPEAK:     
  23.     Handler = L:Speak-Handler
  24.     Stacksize = 6000
  25.     Priority = 5
  26.     GlobVec = -1
  27. #
  28.  
  29. /*  This is an example of an alternative type of non-filing device mount,
  30.     used to mount the non-buffered serial handler
  31. */
  32.  
  33. AUX:
  34.     Handler = L:Aux-Handler
  35.     Stacksize = 1000
  36.     Priority = 5
  37. #
  38. /*  This is a non-filing system device */
  39.  
  40. PIPE:      
  41.     Handler = L:Pipe-Handler
  42.     Stacksize = 6000
  43.     Priority = 5
  44.     GlobVec = -1
  45. #
  46.  
  47. /* This is an example of a mount list entry for using the recoverable 
  48.    ram disk.  Depending on the amount of memory you wish to devote to
  49.    it, you may want to change the HighCyl value.
  50. */
  51.  
  52. RAD:       Device = ramdrive.device
  53.            Unit   = 0
  54.            Flags  = 0
  55.            Surfaces  = 2
  56.            BlocksPerTrack = 11
  57.            Reserved = 2
  58.            Interleave = 0
  59.            LowCyl = 0  ;  HighCyl = 21
  60.            Buffers = 5
  61.            BufMemType = 1
  62. #
  63.  
  64. /* Mount a 5.25" disk drive to be mounted as DF2: */
  65.  
  66. DF2:       Device = trackdisk.device
  67.            Unit   = 2
  68.            Flags  = 1
  69.            Surfaces  = 2
  70.            BlocksPerTrack = 11
  71.            Reserved = 2
  72.            Interleave = 0
  73.            LowCyl = 0  ;  HighCyl = 39
  74.            Buffers = 20
  75.            BufMemType = 3
  76. #
  77.  
  78. /* An example mount entry using the fast file system with a partition
  79.    of the hard disk using the 2090 disk controller.  PREP has been
  80.    used to create the first partition (up to cylinder 20).  The second
  81.    partition is MOUNTed, using the following entry:
  82.    NOTE: Some hard disk drivers require more stack than specified here.
  83.    Some may required less.
  84.    (The hard disk is not included; this is only an example.)
  85. */
  86.  
  87. FAST:
  88.     Device = hddisk.device
  89.     FileSystem = l:FastFileSystem
  90.     Unit   = 1
  91.     Flags  = 0
  92.     Surfaces  = 4
  93.     BlocksPerTrack = 17
  94.     Reserved = 2
  95.     Interleave = 0
  96.     LowCyl = 21  ;  HighCyl = 800
  97.     Buffers = 30
  98.     GlobVec = -1
  99.     BufMemType = 1
  100.     Mount = 1
  101.     DosType = 0x444F5301
  102.     StackSize = 4000
  103. #
  104.  
  105. /* Let's say you have an A2000 with an internal drive, and an external
  106.    drive, and you want to refer to the external drive as DF1: as well
  107.    as DF2:   Well, this MountList entry will do it for you.  This technique
  108.    can be extended to provide you with a drive A: and B: if you really
  109.    want.
  110. */
  111.  
  112. DF1:       Device = trackdisk.device
  113.            Unit   = 2
  114.            Flags  = 1
  115.            Surfaces  = 2
  116.            BlocksPerTrack = 11
  117.            Reserved = 2
  118.            Interleave = 0
  119.            LowCyl = 0  ;  HighCyl = 79
  120.            Buffers = 20
  121.            BufMemType = 3
  122. #
  123.